home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-360.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  93 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12435);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2003-0542");
  13.  
  14.  name["english"] = "RHSA-2003-360: apache";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated Apache packages that fix a minor security issue are now available
  21.   for Red Hat Enterprise Linux.
  22.  
  23.   The Apache HTTP server is a powerful, full-featured, efficient, and
  24.   freely-available Web server.
  25.  
  26.   An issue in the handling of regular expressions from configuration files
  27.   was discovered in releases of the Apache HTTP Server version 1.3 prior to
  28.   1.3.29. To exploit this issue an attacker would need to have the ability
  29.   to write to Apache configuration files such as .htaccess or httpd.conf. A
  30.   carefully-crafted configuration file can cause an exploitable buffer
  31.   overflow and would allow the attacker to execute arbitrary code in the
  32.   context of the server (in default configurations as the \'apache\' user).
  33.   The Common Vulnerabilities and Exposures project (cve.mitre.org) has
  34.   assigned the name CAN-2003-0542 to this issue.
  35.  
  36.   This update also includes an alternative version of the httpd binary which
  37.   supports setting the MaxClients configuration directive to values above
  38.   256.
  39.  
  40.   All users of the Apache HTTP Web Server are advised to upgrade to the
  41.   applicable errata packages, which contain back-ported fixes correcting
  42.   the above security issue.
  43.  
  44.   Note that the instructions in the "Solution" section of this errata contain
  45.   additional steps required to complete the upgrade process.
  46.  
  47.  
  48.  
  49.  
  50. Solution : http://rhn.redhat.com/errata/RHSA-2003-360.html
  51. Risk factor : High';
  52.  
  53.  script_description(english:desc["english"]);
  54.  
  55.  summary["english"] = "Check for the version of the apache packages";
  56.  script_summary(english:summary["english"]);
  57.  
  58.  script_category(ACT_GATHER_INFO);
  59.  
  60.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  61.  family["english"] = "Red Hat Local Security Checks";
  62.  script_family(english:family["english"]);
  63.  
  64.  script_dependencies("ssh_get_info.nasl");
  65.  
  66.  script_require_keys("Host/RedHat/rpm-list");
  67.  exit(0);
  68. }
  69.  
  70. include("rpm.inc");
  71. if ( rpm_check( reference:"apache-1.3.27-6.ent", release:"RHEL2.1") )
  72. {
  73.  security_hole(0);
  74.  exit(0);
  75. }
  76. if ( rpm_check( reference:"apache-devel-1.3.27-6.ent", release:"RHEL2.1") )
  77. {
  78.  security_hole(0);
  79.  exit(0);
  80. }
  81. if ( rpm_check( reference:"apache-manual-1.3.27-6.ent", release:"RHEL2.1") )
  82. {
  83.  security_hole(0);
  84.  exit(0);
  85. }
  86.  
  87. if ( rpm_exists(rpm:"apache-", release:"RHEL2.1") )
  88. {
  89.  set_kb_item(name:"CAN-2003-0542", value:TRUE);
  90. }
  91.  
  92. set_kb_item(name:"RHSA-2003-360", value:TRUE);
  93.